-- Freitags @ The Garden -- |
$db="events";
$getdata = getTable($db, "WHERE timestamp > ".time()." AND typ = 'clubnight' ORDER by timestamp asc LIMIT 0,50");
if (is_array($getdata))
{
foreach ($getdata as $hdata)
{
if(date("l", $hdata["timestamp"])=="Friday")
{
?>
}
}
}
else
{
?>
Keine Dates vorhanden!
}
?> |
-- Samstags @ The Garden -- |
if (is_array($getdata))
{
foreach ($getdata as $hdata)
{
if(date("l", $hdata["timestamp"])=="Saturday")
{
?>
}
}
}
else
{
?>
Keine Dates vorhanden!
}
?> |
-- Specials @ The Garden -- |
if (is_array($getdata))
{
foreach ($getdata as $hdata)
{
if((date("l", $hdata["timestamp"])!="Saturday") AND (date("l", $hdata["timestamp"])!="Friday"))
{
echo "Special";
?>
$check=true;
}
}
if($check!=true)
{
echo " Zur Zeit sind keine Specials angekündigt
";
}
}
else
{
echo " Zur Zeit sind keine Specials angekündigt
";
}
?> |
-- Konzerte @ The Garden -- |
$db="events";
$getdata = getTable($db, "WHERE timestamp > ".time()." AND typ = 'konzert' ORDER by timestamp asc LIMIT 0,50");
if (is_array($getdata))
{
foreach ($getdata as $hdata)
{
?>
}
}
else
{
?>
Zur Zeit sind keine Konzerte angekündigt
}
?> |
$db = "news";
$getdata = getTable($db, "WHERE fk_id = '2' ORDER by id desc LIMIT 0,50");
if (is_array($getdata))
{
?>
-- Preview -- |
foreach ($getdata as $hdata)
{
?>
echo $hdata["titel"];?>
echo $hdata["text"];?>
}
?>
|
}
?>
-- Impressum-- |